home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / i2p / eepsite / jetty-ssl.xml < prev    next >
Encoding:
Extensible Markup Language  |  2012-10-27  |  1.5 KB  |  37 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
  3.  
  4. <!-- =============================================================== -->
  5. <!-- Configure SSL for the Jetty Server                              -->
  6. <!-- this configuration file should be used in combination with      -->
  7. <!-- other configuration files.  e.g.                                -->
  8. <!--    java -jar start.jar etc/jetty.xml etc/jetty-ssl.xml          -->
  9. <!-- =============================================================== -->
  10. <Configure id="Server" class="org.mortbay.jetty.Server">
  11.  
  12.  
  13.  
  14.   <Call name="addConnector">
  15.     <Arg>
  16.       <New class="org.mortbay.jetty.security.SslSocketConnector">
  17.         <Set name="Port">8443</Set>
  18.         <Set name="maxIdleTime">30000</Set>
  19.         <Set name="useDirectBuffers">false</Set>
  20.         <Set name="handshakeTimeout">2000</Set>
  21.         <Set name="keystore">./eepsite/etc/keystore.ks</Set>
  22.         <Set name="password">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
  23.         <Set name="keyPassword">OBF:1u2u1wml1z7s1z7a1wnl1u2g</Set>
  24.         <Set name="truststore">./eepsite/etc/keystore.ks</Set>
  25.         <Set name="trustPassword">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
  26.         <Set name="handshakeTimeout">2000</Set>
  27.         <!-- Set name="ThreadPool">
  28.           <New class="org.mortbay.thread.QueuedThreadPool">
  29.             <Set name="minThreads">0</Set>
  30.             <Set name="maxThreads">16</Set>
  31.          </New>
  32.         </Set -->
  33.       </New>
  34.     </Arg>
  35.   </Call>
  36. </Configure>
  37.